home *** CD-ROM | disk | FTP | other *** search
/ Delphi Programmer's Power Pack / Delphi Volume 1.iso / s_to_z / tbarco16 / barcod16.pas < prev    next >
Pascal/Delphi Source File  |  1996-09-15  |  221b  |  20 lines

  1. unit Barcod16;
  2.  
  3. interface
  4. procedure Register;
  5.  
  6. implementation
  7.  
  8. uses
  9.   Classes,
  10.   Bar16HL,Bar16LL;
  11.  
  12. {$R BARCOD16.RES}
  13.  
  14. procedure Register;
  15. begin
  16.   RegisterComponents('Schlottke', [TBarcode]);
  17. end;
  18.  
  19. end.
  20.